home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / spinclient.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  103 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6. # Thanks to Tollef Fog Heen <tfheen@opera.no> for his help
  7.  
  8. if(description)
  9. {
  10.  script_id(10393);
  11.  script_version ("$Revision: 1.13 $");
  12.  
  13.  name["english"] = "spin_client.cgi buffer overrun";
  14.  name["francais"] = "spin_client.cgi buffer overrun";
  15.  script_name(english:name["english"], francais:name["francais"]);
  16.  
  17.  desc["english"] = "
  18. There is a buffer overrun in
  19. the 'spin_client.cgi' CGI program, which will allow anyone to
  20. execute arbitrary commands with the same privileges as the
  21. web server (root or nobody).
  22.  
  23. Solution : remove it from /cgi-bin or contact
  24. your vendor for a fix
  25.  
  26. Risk factor : High";
  27.  
  28.  
  29.  desc["francais"] = "Il y a un dΘpassement de buffer
  30. dans le CGI 'spin_client.cgi', qui permet α n'importe qui d'executer
  31. des commandes arbitraires avec les memes privilΦges que le 
  32. serveur web (root ou nobody).
  33.  
  34. Solution : retirez-le de /cgi-bin ou contactez votre vendeur
  35. pour un patch
  36.  
  37. Facteur de risque : SΘrieux";
  38.  
  39.  
  40.  script_description(english:desc["english"], francais:desc["francais"]);
  41.  
  42.  summary["english"] = "Checks for the /cgi-bin/spin_client.cgi buffer overrun";
  43.  summary["francais"] = "VΘrifie le dΘpassement de buffer de /cgi-bin/spin_client.cgi";
  44.  
  45.  script_summary(english:summary["english"], francais:summary["francais"]);
  46.  
  47.  script_category(ACT_DESTRUCTIVE_ATTACK);
  48.  
  49.  
  50.  script_copyright(english:"This script is Copyright (C) 2000 Renaud Deraison",
  51.         francais:"Ce script est Copyright (C) 2000 Renaud Deraison");
  52.  family["english"] = "CGI abuses";
  53.  family["francais"] = "Abus de CGI";
  54.  script_family(english:family["english"], francais:family["francais"]);
  55.  script_dependencie("find_service.nes", "no404.nasl");
  56.  script_require_ports("Services/www", 80);
  57.  exit(0);
  58. }
  59.  
  60. #
  61. # This CGI is tricky to check for.
  62. #
  63.  
  64. include("http_func.inc");
  65. include("http_keepalive.inc");
  66.  
  67. port = get_http_port(default:80);
  68.  
  69.  
  70. if(!get_port_state(port))exit(0);
  71.  
  72. foreach dir (cgi_dirs())
  73. {
  74.  if(is_cgi_installed_ka(item:string(dir, "/spin_client.cgi"), port:port))
  75.  {
  76.  soc = open_sock_tcp(port);
  77.  if(soc)
  78.  {
  79.   req = string("GET ", dir, "/spin_client.cgi?",crap(8)," HTTP/1.0\r\n");
  80.   req = req + string("User-Agent: ", crap(8), "\r\n\r\n");
  81.   send(socket:soc, data:req);
  82.   r = recv_line(socket:soc, length:1024);
  83.   close(soc);
  84.   if(ereg(pattern:"^HTTP\/[0-9]\.[0-9] 200 ",
  85.          string:r))
  86.    {
  87.    soc = open_sock_tcp(port);
  88.    req = string("GET ", dir, "/spin_client.cgi?",crap(8000), " HTTP/1.0\r\n");
  89.    req = req + string("User-Agent: ", crap(8000), "\r\n\r\n");
  90.    send(socket:soc, data:req);
  91.    r = http_recv(socket:soc);
  92.    if(ereg(pattern:"^HTTP\/[0-9]\.[0-9] 500 ",
  93.          string:r))
  94.    {
  95.        security_hole(port);
  96.    }
  97.   }
  98.  }
  99.  else exit(0);
  100.  }
  101. }
  102.